home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 18 / AMIGAplus Sonderheft 18 (1999)(ICP)(DE)[!].iso / PD / Spiele / lazymines / lazymines_src / highscores.h < prev    next >
C/C++ Source or Header  |  1999-01-03  |  420b  |  30 lines

  1. /* highscores.h
  2.  * ============
  3.  * Interface to highscore handling.
  4.  *
  5.  * Copyright (C) 1994-1998 Håkan L. Younes (lorens@hem.passagen.se)
  6.  */
  7.  
  8. #ifndef HIGHSCORES_H
  9. #define HIGHSCORES_H
  10.  
  11. #include <exec/types.h>
  12.  
  13.  
  14. void
  15. load_high_scores (
  16.    char  *default_name);
  17.  
  18. void
  19. save_high_scores (void);
  20.  
  21. UBYTE
  22. update_high_score (
  23.    UWORD   score);
  24.  
  25. void
  26. display_high_scores (
  27.    UBYTE   highlight_no);
  28.  
  29. #endif /* HIGHSCORES_H */
  30.